home *** CD-ROM | disk | FTP | other *** search
/ C/C++ Users Group Library 1996 July / C-C++ Users Group Library July 1996.iso / listings / v_10_06 / 1006083a < prev    next >
Text File  |  1992-04-20  |  129b  |  6 lines

  1. /* an example of a makefile with a recursive dependency */
  2. hello.obj : hello.c proto.h
  3.         cc hello.c
  4.  
  5. proto.h : hello.obj
  6.